home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cutenews_phpinfo.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  68 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_version ("$Revision: 1.3 $");
  8.  script_id(11940);
  9.  script_bugtraq_id(9130);
  10.  
  11.  name["english"] = "CuteNews debug info disclosure";
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote host is running the CuteNews CGI suite.
  16.  
  17. There is a bug in this suite which may allow an attacker
  18. to force it to call the phpinfo() PHP function by requesting :
  19.  
  20.     http://example.com/cutenews/index.php?debug
  21.  
  22. Some of the information that can be garnered from this output
  23. includes:  The username of the user who installed php, if they 
  24. are a SUDO user, the IP address of the host, the web server 
  25. version, The system version(unix / linux), and the root 
  26. directory of the web server.
  27.  
  28. Solution: Disable CuteNews or upgrade to the newest version
  29. Risk factor: Low";
  30.  
  31.  script_description(english:desc["english"]);
  32.  summary["english"] = "Checks for the presence of cutenews";
  33.  script_summary(english:summary["english"]);
  34.  script_category(ACT_GATHER_INFO);
  35.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security");
  36.  family["english"] = "CGI abuses";
  37.  family["francais"] = "Abus de CGI";
  38.  script_family(english:family["english"], francais:family["francais"]);
  39.  script_require_ports("Services/www", 80);
  40.  script_dependencies("http_version.nasl", "http_version.nasl");
  41.  exit(0);
  42. }
  43.  
  44. #
  45. # The script code starts here
  46. #
  47. include("http_func.inc");
  48. include("http_keepalive.inc");
  49.  
  50. port = get_http_port(default:80);
  51.  
  52. if(!can_host_php(port:port))exit(0);
  53.  
  54. dirs = cgi_dirs();
  55.  
  56. foreach dir (make_list("", dirs))
  57. {
  58.  req = http_get(item:string(dir, "/index.php?debug"), port:port);
  59.  res = http_keepalive_send_recv(port:port, data:req);
  60.  if( res == NULL ) exit(0);
  61.  if("CuteNews Debug Information:" >< res)
  62.  {
  63.   security_warning(port);
  64.   exit(0);
  65.  }
  66. }
  67.  
  68.